home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows4 / prndrv.zip / GLOBALS.H < prev    next >
Text File  |  1992-02-20  |  864b  |  40 lines

  1. // Copyright (c) 1992 Microsoft Corporation. All rights reserved.
  2.  
  3. // Menu defines.
  4. #define IDM_TOP         1
  5.  
  6. #define IDM_EXIT        500
  7. #define IDM_ABOUT       510
  8. #define IDM_DRVINFO     520
  9. #define IDM_PAPERSIZES  530
  10. #define IDM_BINS        540
  11. #define IDMDEVMODE      550
  12.  
  13.  
  14.  
  15. // String Table Defines
  16.  
  17. #define IDS_PROGNAME       700
  18. #define IDS_MAINMENUNAME   800
  19. #define IDS_MAINCLASSNAME  900
  20.  
  21.  
  22.  
  23. // Global variables defined in this header.  One .C file (INIT.C) should have
  24. //  IN_INIT #define'd prior to including this header -- it's in that
  25. //  C module where these variables will reside.
  26.  
  27. #ifdef IN_INIT
  28. #define EXTERN
  29. #endif
  30.  
  31. #ifndef IN_INIT
  32. #define EXTERN extern
  33. #endif
  34.  
  35. EXTERN HANDLE ghInst;                     // Handle to this instance
  36. EXTERN HWND   ghWnd;                      // Handle to main window
  37.  
  38.   
  39. 
  40.